Lab4 – Use MPIO to Control Peripherals 
----------------------------------------------------------------

/* Launch Mincom and Connect to USB CDC Bridge. */
/* Execute Commands on Host PC */
sudo minicom --baudrate 115200 --device /dev/ttyACM0

/* Key in Text on EVB to Login */
/* Execute Commands on EVB */
root

----------------------------------------------------------------

/* Execute Commands on EVB */
python

import time
from mpio import LED
green = LED("green", True)
green.brightness = True
time.sleep(3)
green.brightness = False
from mpio import ADC
print("ADC:", ADC(0).value(3))
exit()
